home *** CD-ROM | disk | FTP | other *** search
/ Electronics Boutique Catalog 1996 Spring / 1996 Electronics Boutique Spring CD-ROM (USA).bin / eb / demos / mw2demo.dir / 00005.ls < prev    next >
Encoding:
Text File  |  1995-12-11  |  472 b   |  28 lines

  1. on enterFrame
  2.   set the visible of sprite 18 to 0
  3.   set lrollOver to 0
  4.   if rollOver(3) then
  5.     set lrollOver to 1
  6.     go("more button1")
  7.   end if
  8.   if rollOver(4) then
  9.     set lrollOver to 1
  10.     go("more button2")
  11.   end if
  12.   if rollOver(5) then
  13.     set lrollOver to 1
  14.     go("more button3")
  15.   end if
  16.   if rollOver(13) then
  17.     set lrollOver to 1
  18.     go("more return")
  19.   end if
  20.   if not lrollOver then
  21.     go("more screen")
  22.   end if
  23. end
  24.  
  25. on exitFrame
  26.   go(the frame)
  27. end
  28.